home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / npfobs12 / readme.txt < prev    next >
Encoding:
Text File  |  1999-02-02  |  4.6 KB  |  158 lines

  1.  
  2. FOBS ActiveX Plugin - ActiveX Plugin for Netscape (and IE) browsers
  3. -------------------------------------------------------------------
  4.  
  5. 1. Abstract
  6.  
  7. FOBS ActiveX Plugin is a browser plugin that enables the deployment of 
  8. ActiveX controls in Netscape (and IE) browsers.
  9. FOBS ActiveX Plugin is especially suited 
  10. for VB (Visual Basic) programmers that want to develop 
  11. cross-browser WEB enabled applications.
  12. FOBS ActiveX Plugin is a shareware program.
  13.  
  14.  
  15. 2. Installation
  16.  
  17. To use the plugin, you have to copy NPFOBSAX.DLL to the browser's
  18. plugins directory 
  19. (e.g. C:\Program Files\Netscape\Communicator\Program\Plugins).
  20.  
  21.  
  22. 3. Using the plugin
  23.  
  24. To use the plugin, simply add an "embed" tag as following:
  25.  
  26.         <embed 
  27.         src="test1.FBS" 
  28.         TYPE = "application/x-fobs-activex-plugin"
  29.         border="0" 
  30.         width="500" 
  31.         height="400"
  32.         name="test1"
  33.         >
  34.  
  35. Notes:
  36.  *  The FBS file contains instructions for the plugin (see section 4).
  37.  *  The height and width are controlled from the EMBED tag.
  38.  *  The file extension should be FBS.
  39.  *  The FBS file should reside next to the HMTL file or full path
  40.     should be provided.
  41.  *  The plugin creates an instance of the ActiveX control specified
  42.     in the FBS file - The FBS file holds the name of the ActiveX
  43.     control (see section 4).
  44.  *  You can create many instances of the plugin in one page.  
  45.     Each of them may host any ActiveX control.
  46.  *  The same HTML file is good for all browsers 
  47.     (i.e. IE, Netscape browsers etc.).
  48.  *  Internet Explorer should also must have the plugin installed in 
  49.     its Plugins directory.
  50.  
  51.  
  52. 4. The FBS file
  53.  
  54. The FBS file contains information about the ActiveX control to be
  55. instantiated.
  56.  
  57. The FBS file is a text file.
  58. Its structure is as following:
  59.  
  60. Line 1        - ActiveX control name.
  61. Line 2        - Reserved for future use.
  62. Rest of file  - User data.
  63.  
  64.     4.1 Line 1 - ActiveX control name
  65.         This string may contain the OLE "short name" (ProgID) for the 
  66.         class, e.g., "CIRC3.Circ3Ctrl.1". 
  67.         The name needs to match the same name registered by the 
  68.         control.
  69.         Alternatively, the string may contain the string form of a 
  70.         CLSID, contained in braces, e.g., 
  71.         "{9DBAFCCF-592F-101B-85CE-00608CEC297B}".
  72.  
  73.         Examples:
  74.         1. Short name - "Project1.UserControl1"
  75.         2. Class ID   - "{EAC15A54-9D6A-11D2-95B8-004095040767}"
  76.  
  77.  
  78.     4.2 Line 2
  79.     This line is reserved for future use.
  80.  
  81.  
  82.     4.3 Rest of file
  83.         The user data is available for the ActiveX control upon 
  84.         initialization (UserControl_Initialize) in the 
  85.         file C:\FOBSAX.FBS.
  86.         C:\FOBSAX.FBS contains the entire FBS file.
  87.         You may use the user-data area to set initialize
  88.     property values for the ActiveX Control.
  89.     For more details on this please contact us (see section 9
  90.         "Company information").
  91.  
  92.  
  93. 5. Client installation
  94.  
  95. The ActiveX control must be installed on the client machine.
  96. The plugin should reside on the browser's plugins directory.
  97.  
  98.  
  99. 6. Redistribution
  100.  
  101. You can freely distribute NPFOBSAX.DLL.
  102.  
  103.  
  104. 7. Pricing
  105.  
  106. If you like this product you are kindly requested to 
  107. pay 30 $ (U.S. Dollars) for each developer workstation that 
  108. is used to develop components for deployment using FOBS ActiveX Plugin.
  109. Runtime use is free.
  110. To register your copy of the shareware, please
  111. contact Atzmon Hen-tov <atzi@fobstech.com>.
  112.  
  113. 8. Example project
  114.  
  115. An example VB project is included.
  116. This example is intended for computer specialists.
  117. The example consists of:
  118. 1. A VB ActiveX Control Project (Project1.UserControl1).
  119. 2. An example HTML file that uses Project1.UserControl1.
  120. 3. An Example FBS file.
  121.  
  122. To use the example:
  123. 1. Copy the plugin (NPFOBSAX.DLL) to your browser's plugin folder
  124.    (e.g. C:\Program Files\Netscape\Communicator\Program\Plugins).
  125. 2. Register Project1.OCX (on the registry):
  126.  
  127.    2.1 Compile Project1 to create Project1.OCX 
  128.  
  129.    OR
  130.  
  131.    2.2 Use REGSVR32.EXE to register Project1.OCX.
  132.  
  133. 3. Enter testPlugin.htm.
  134. 4. Enjoy yourself.
  135.  
  136.  
  137. 9. Company information
  138.  
  139. FOBS_ACTIVEX Plugin is a product of:
  140.  
  141. FOBS Systems LTD.
  142. 10 Ben Gurion St.
  143. Ramat-Gan 52573
  144. Israel
  145.  
  146. Contacts:
  147. EMAIL:         Atzmon Hen-tov <atzi@fobstech.com>
  148. DOWNLOAD:     ftp://ftp.fobstech.com/NPFOBSAX/NPFOBS11.ZIP
  149. WEB:        http://www.fobstech.com
  150.  
  151.  
  152. 10. Changes from version 1.1
  153.  
  154. 1. Size of Plugin reduced to 224 KB (from 1326 KB).
  155. 2. The plugin now supports instantiation by class ID (see 4.1).
  156. 3. The sample project includes an example for setting properties
  157.    of the ActiveX control.
  158.